home *** CD-ROM | disk | FTP | other *** search
/ NT Sources / Infomagic - NT Source Volume 1 (Disc 1 of 2).iso / network / pcdctrla.exe / PCDCTRL.EXE / PCDINS.CMD < prev    next >
OS/2 REXX Batch file  |  1997-04-10  |  3KB  |  74 lines

  1. $!-----------------------------------------------------------------------------
  2. $! PCDUO_INSTALL.COM - Command procedure to invoke LANdist to perform a
  3. $! PC-Duo installation on a list of PCs.
  4. $!
  5. $! PC-Duo v3.6
  6. $!
  7. $! Copyright (c) 1995 - 1997, Vector Networks Limited. All Rights Reserved.
  8. $!
  9. $! Revision History :
  10. $!
  11. $! DB 10-Apr-95 - Updated for PC-Duo v2.02
  12. $! SB 24-May-95 - Switched to LANdist's -CUSTOM: interface.
  13. $! SB 28-Jun-95 - Remove unnecessary use of LU$DEBUG, to reduce log file size.
  14. $! DB 04-Sep-95 - Updated for PC-Duo v2.1
  15. $! JD 03-Apr-96 - Updated for PC-Duo v3.6
  16. $!
  17. $!-----------------------------------------------------------------------------
  18. $
  19. $ Type Sys$Input:
  20.  
  21.     ********************** IMPORTANT LICENSING NOTE ***********************
  22.  
  23.     LANutil Script Technology is supplied under a restricted licence
  24.                     during the package evaluation period:
  25.  
  26.     All scripts for LANdist are Copyright (c) 1995, Vector Networks Limited,
  27.     and demonstration licences are restricted to using them for upgrading, or
  28.     installing, software/data on a total of no more than 5 PCs.
  29.  
  30.     Vector Networks includes these scripts within the demonstration kit in
  31.     good faith, to allow a thorough evaluation of the LANutil package.
  32.  
  33.     You are expected to respect this restriction during the evaluation
  34.     period.
  35.  
  36.     If you wish to use LANdist and/or the supplied scripts to upgrade or
  37.     install software on more than 5 PCs, you must purchase the appropriate
  38.     LANutil licence first.
  39.  
  40. $! Other files are involved in this procedure, called through the
  41. $! -CUSTOM: facility in LANdist.
  42. $!
  43. $! Assumptions:
  44. $!  1 - The PC-Duo kit has been installed on the source PC;
  45. $!  2 - The PC-Duo Windows drivers (PCDVGA.DRV and PCDVXD.386) must be
  46. $!      accessible on the source PC. This may not be possible if that PC is
  47. $!      currently running Windows;
  48. $!  3 - The PCs to be processed by this procedure are listed in PCDUO.PC_LIST;
  49. $!  4 - All concerned PCs are accessible over PATHWORKS or a LANlink transport;
  50. $!  5 - The listed PCs have enough free disk space for the PC-Duo kit.
  51. $!
  52. $! A full PC-Duo installation requires approximately 3 MBytes of disk space.
  53. $!
  54. $! *** This procedure does not check free disk space. This should be done ***
  55. $! *** with LANfree, if necessary, before running this procedure.         ***
  56. $
  57. $!  set verify
  58. $!  lu$verify   = "TRUE"
  59. $!  lu$debug    = "TRUE"
  60. $
  61. $! Define global symbols containing the PC\RESOURCE name for the source PC and
  62. $! the password, if any, required to access it.
  63. $!
  64. $! This procedure will clone the installed PC-Duo kit from the PC named in
  65. $! 'pc_source' onto each of the PCs listed in the list file.
  66. $
  67. $   pc_source      = "DEC17\C"
  68. $
  69. $   LANdist update \\'pc_source'\pcduo\*.* @pcduo.pc_list \pcduo.new\ -
  70. $       -custom:@pcduo_custom -subdirectories
  71. $!      -interlock:\windows\progman.exe,\windows\win.com
  72. $!
  73. $! End of PCDUO_INSTALL.COM
  74.